@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: background-color 0.3s;
}

header:hover {
    background-color: rgba(255, 255, 255, 1);
}

.logo {
    font-size: 2.5em;
    color: #333;
    cursor: pointer;
    font-weight: 700;
}

.logo span {
    color: #f03d66;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: #fff;
    background-color: #f03d66;
    transform: scale(1.1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: background-color 0.3s;
}

header:hover {
    background-color: rgba(255, 255, 255, 1);
}

.sidebar {
    background-color: #F2D2D2;
    color: #333;
    width: 350px;
    padding: 30px;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
    margin-top: 8%;
    z-index: 50;
}

.sidebar img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #e1c7c0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style-type: square;
    margin: 20px 0;
    text-align: left;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar p {
    font-weight: 500;
    font-size: 1.1rem;
    color: #555;
}

.main {
    margin-left: 350px;
    margin-top: 100px;
    padding: 40px;
    background-color: #fff;
}

.main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.header-content {
    padding: 20px;
    text-align: center;
    background-color: #F5BCC9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.header-content h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.header-content p {
    font-size: 1.1rem;
    color: #333;
}

.header-content button {
    background-color: #F5BCC9;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
    font-weight: 500;
}

.header-content button:hover {
    transform: translateY(-3px);
    background-color: #f03d66;
    color: #fff;
}

.project-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project, .projectt {
    flex: 1 1 calc(33.33% - 20px);
    text-align: center;
    background: #fde3e3;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project img {
    max-width: 100%;
    height: 80%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.projectt img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project h3, .projectt h3 {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: bold;
}

.project:hover, .projectt:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        box-shadow: none;
    }

    .main {
        margin-left: 0;
    }

    .project {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .project {
        flex: 1 1 100%;
    }

    .sidebar {
        padding: 15px;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .header-content p {
        font-size: 1rem;
    }
}
